home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 1 / CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso / Aminet / comm / tcp / AmiTCPsdk_40.lha / AmiTCP-4.0 / netinclude / utime.h < prev    next >
C/C++ Source or Header  |  1994-10-03  |  492b  |  20 lines

  1. #ifndef    UTIME_H
  2. #define    UTIME_H \
  3.        "$Id: utime.h,v 4.1 1994/10/03 20:52:20 ppessi Exp $"
  4. /*
  5.  *      Definitions and prototype for the utime() (in the net.lib)
  6.  *
  7.  *      Copyright © 1994 AmiTCP/IP Group,
  8.  *                       Network Solutions Development, Inc.
  9.  *                       All rights reserved.
  10.  */
  11.  
  12. struct utimbuf {
  13.     time_t actime;        /* Access time */
  14.     time_t modtime;        /* Modification time */
  15. };
  16.  
  17. int utime(const char *, const struct utimbuf *);
  18.  
  19. #endif /* !UTIME_H */
  20.